| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- const path = require('path')
- module.exports = {
- publicPath: '/',
- lintOnSave: false,
- css: {
- loaderOptions: {
- sass: {
- sassOptions: {
- includePaths: ['node_modules', 'resources/assets']
- }
- }
- }
- },
- configureWebpack: {
- resolve: {
- alias: {
- '@resources': path.resolve(__dirname, 'resources/'),
- '@': path.resolve(__dirname, 'resources/js/src/'),
- '@themeConfig': path.resolve(__dirname, 'resources/js/themeConfig.js'),
- '@core': path.resolve(__dirname, 'resources/js/src/@core'),
- '@validations': path.resolve(__dirname, 'resources/js/src/@core/utils/validations/validations.js'),
- '@axios': path.resolve(__dirname, 'resources/js/src/libs/axios')
- }
- }
- },
- chainWebpack: config => {
- config.module
- .rule('vue')
- .use('vue-loader')
- .loader('vue-loader')
- .tap(options => {
- // eslint-disable-next-line no-param-reassign
- options.transformAssetUrls = {
- img: 'src',
- image: 'xlink:href',
- 'b-avatar': 'src',
- 'b-img': 'src',
- 'b-img-lazy': ['src', 'blank-src'],
- 'b-card': 'img-src',
- 'b-card-img': 'src',
- 'b-card-img-lazy': ['src', 'blank-src'],
- 'b-carousel-slide': 'img-src',
- 'b-embed': 'src'
- }
- return options
- })
- },
- transpileDependencies: ['vue-echarts', 'resize-detector']
- }
|