-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
28 lines (28 loc) · 713 Bytes
/
Copy pathconfig.js
File metadata and controls
28 lines (28 loc) · 713 Bytes
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
export default {
projectName: 'project-name',
ignoredBlocks: [
// 'no-js',
],
alwaysAddBlocks: [
// 'tippy',
],
addStyle: [
'src/styles/variables.scss',
'src/styles/mixins.scss',
'src/styles/keyframes.scss',
'src/styles/functions.scss',
'src/styles/vendor.scss',
'src/styles/global.scss',
'src/styles/fonts.scss',
],
addJsBefore: [
// './utils/some.js',
// для 'node_modules/somePackage/dist/somePackage.js',
],
addJsAfter: ['./index.js'],
addAssets: {
'src/assets/fonts/**/*.{woff,woff2}': 'fonts/',
'src/assets/favicons/**/*.{png,ico,svg,xml,webmanifest}': 'favicons/',
// 'node_modules/somePackage/images/**': 'images/',
},
};