initial clearout

This commit is contained in:
2023-07-23 02:11:22 +02:00
parent d7318eaa78
commit 5ecc312246
9 changed files with 144 additions and 119 deletions

View File

@@ -9,30 +9,25 @@ import { fileURLToPath, URL } from 'node:url'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue({
vue({
template: { transformAssetUrls }
}),
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin
vuetify({
autoImport: true,
}),
autoImport: true
})
],
define: { 'process.env': {} },
define: {
'process.env': {},
__APP_VERSION__: JSON.stringify(process.env.npm_package_version)
},
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
},
extensions: [
'.js',
'.json',
'.jsx',
'.mjs',
'.ts',
'.tsx',
'.vue',
],
extensions: ['.js', '.json', '.jsx', '.mjs', '.ts', '.tsx', '.vue']
},
server: {
port: 3000,
},
port: 3000
}
})