Introduce the new Vue admin project into version control while tightening gitignore patterns to keep env files, logs, build artifacts, and test outputs out of commits. Made-with: Cursor
11 lines
158 B
JavaScript
Executable File
11 lines
158 B
JavaScript
Executable File
module.exports = {
|
|
presets: [
|
|
['@vue/app',
|
|
{
|
|
'useBuiltIns': 'entry',
|
|
polyfills: ['es6.promise', 'es6.symbol']
|
|
}
|
|
]
|
|
]
|
|
}
|