This commit is contained in:
tamaina
2022-04-23 01:50:20 +09:00
parent 5b4d75c2b4
commit f5f8843022
10 changed files with 30 additions and 40 deletions

View File

@@ -45,7 +45,11 @@ export default defineConfig(({ command, mode }) => {
},
build: {
target: 'esnext',
target: [
'chrome100',
'firefox100',
'safari15',
],
manifest: true,
rollupOptions: {
input: {
@@ -57,8 +61,9 @@ export default defineConfig(({ command, mode }) => {
},
},
},
outDir: __dirname + '/../../built/_client_dist_',
assetsDir: 'dest',
outDir: __dirname + '/../../built',
assetsDir: '_client_dist_',
emptyOutDir: false,
},
}
});