Add method for get passPhrase

This commit is contained in:
DwCay
2022-06-15 17:41:02 +03:00
parent da04efbf80
commit eeaabeebf3
8 changed files with 2421 additions and 35 deletions

View File

@@ -2,6 +2,7 @@ import { defineConfig } from 'vite'
import postcss from './postcss.config.js'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
define: {
@@ -11,6 +12,9 @@ export default defineConfig({
postcss,
},
plugins: [react()],
node: {
fs: 'empty'
},
resolve: {
alias: [
{
@@ -25,5 +29,5 @@ export default defineConfig({
commonjsOptions: {
transformMixedEsModules: true,
}
}
}
})