1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-10-20 00:17:38 +00:00

Relocate our existing web code to subdirectories

- Move the frontend code into src/frontend
 - Move our custom element SSR system into src/htmlTransform.

This is mostly in prep for merging in copy-cat's core, as that's a whole
bunch of extra code.
This commit is contained in:
Jonathan Coates
2023-09-28 21:00:00 +01:00
parent e6125bcf60
commit 663eecff0c
73 changed files with 51 additions and 30 deletions

View File

@@ -9,7 +9,7 @@ import terser from "@rollup/plugin-terser";
import typescript from "@rollup/plugin-typescript";
import url from "@rollup/plugin-url";
const input = "src";
const input = "src/frontend";
const requirejs = readFileSync("../../node_modules/requirejs/require.js");
/** @type import("rollup").RollupOptions */