diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..400e2a8 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,5 @@ +node_modules/ +dist/ +build/ +.env +*.log diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..5fcd8a7 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,3 @@ +{ + "tabWidth": 4 +} diff --git a/forge.config.ts b/forge.config.ts index eb80f6a..c877423 100644 --- a/forge.config.ts +++ b/forge.config.ts @@ -25,7 +25,7 @@ const config: ForgeConfig = { build: [ { // `entry` is just an alias for `build.lib.entry` in the corresponding file of `config`. - entry: 'src/main.ts', + entry: 'src/main/main.ts', config: 'vite.config.ts', target: 'main', }, diff --git a/index.html b/index.html index 57ec202..eea3bd7 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,11 @@