ea94bc7f6d
This change implements the access grant creation flow in the Vuetify project. Resolves #6061 Change-Id: I233088cbfcfe458936410899531389e290f276d4
55 lines
1.5 KiB
JavaScript
55 lines
1.5 KiB
JavaScript
// Copyright (C) 2023 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import { fileURLToPath, URL } from 'node:url';
|
|
|
|
import vue from '@vitejs/plugin-vue';
|
|
import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify';
|
|
import { defineConfig } from 'vite';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
base: '/static/dist_vuetify_poc',
|
|
plugins: [
|
|
vue({
|
|
template: { transformAssetUrls },
|
|
}),
|
|
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin
|
|
vuetify({
|
|
autoImport: true,
|
|
styles: {
|
|
configFile: 'vuetify-poc/src/styles/settings.scss',
|
|
},
|
|
}),
|
|
],
|
|
define: { 'process.env': {} },
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
|
'@poc': fileURLToPath(new URL('./vuetify-poc/src', import.meta.url)),
|
|
'stream': 'stream-browserify', // Passphrase mnemonic generation will not work without this
|
|
},
|
|
extensions: [
|
|
'.js',
|
|
'.json',
|
|
'.jsx',
|
|
'.mjs',
|
|
'.ts',
|
|
'.tsx',
|
|
'.vue',
|
|
],
|
|
},
|
|
build: {
|
|
outDir: fileURLToPath(new URL('dist_vuetify_poc', import.meta.url)),
|
|
emptyOutDir: true,
|
|
rollupOptions: {
|
|
input: {
|
|
'vuetify-poc': fileURLToPath(new URL('./index-vuetify.html', import.meta.url)),
|
|
},
|
|
},
|
|
},
|
|
server: {
|
|
port: 3000,
|
|
},
|
|
});
|