-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcraco.config.ts
65 lines (63 loc) · 1.46 KB
/
craco.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
const path = require('path')
const CracoLessPlugin = require('craco-less')
import { CracoWebpackConfig } from './src/index.d'
const resolve = (configUrl: string) => path.resolve(__dirname, configUrl)
module.exports = {
typescript: {
enableTypeChecking: true /* (default value) */,
},
plugins: [
{
plugin: CracoLessPlugin,
options: {
lessLoaderOptions: {
lessOptions: {
modifyVars: {
'@primary-color': '#ff385c',
'@second-color': '#00848A;'
},
additionalData: `@import "@/assets/styles/variables.less";`,
javascriptEnabled: true,
},
},
},
},
],
devServer: {
host: '0.0.0.0',
port: 8080,
proxy: {
'/api': {
target: "http://codercba.com:1888/airbnb/api",
pathRewrite: { '^/api': '' },
},
}
},
style: {
less: {
loaderOptions: {
additionalData: `@import "@/assets/styles/variables.less";`
},
},
},
webpack: {
alias: {
"@": resolve('src')
},
configure: {
module: {
rules: [
{
test: /\.svg$/i,
issuer: /\.[jt]sx?$/,
use: [{ loader: '@svgr/webpack', options: { icon: true } }],
},
// {
// test: /\.(jpg|png|jpeg|gif)$/i,
// use: [{ loader: 'url-loader', options: { limit: false } }],
// }
]
}
} as CracoWebpackConfig
}
}