mirror of
https://github.com/ParisNeo/lollms.git
synced 2024-12-20 21:23:17 +00:00
13 lines
262 B
JavaScript
13 lines
262 B
JavaScript
|
const { defineConfig } = require('@vue/cli-service')
|
||
|
module.exports = defineConfig({
|
||
|
transpileDependencies: true,
|
||
|
css: {
|
||
|
loaderOptions: {
|
||
|
css: {
|
||
|
// Import the tailwind.css file
|
||
|
import: 'assets/css/tailwind.css'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
})
|