style: format code using Prettier

This commit is contained in:
2026-08-08 17:23:19 +02:00
parent 1932eaf154
commit ea5e238ad0
59 changed files with 9649 additions and 8795 deletions
+18 -18
View File
@@ -21,22 +21,22 @@ import { createHtmlPlugin } from 'vite-plugin-html';
// https://vite.dev/config/
export default defineConfig({
build: {
target: 'es2020'
},
plugins: [
vue(),
createHtmlPlugin({
minify: true
})
],
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
},
test: {
globals: false,
environment: 'jsdom'
}
build: {
target: 'es2020',
},
plugins: [
vue(),
createHtmlPlugin({
minify: true,
}),
],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
test: {
globals: false,
environment: 'jsdom',
},
});