-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathlibby.config.js
36 lines (36 loc) · 1.03 KB
/
libby.config.js
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
/**
* @type {import('@sparkpost/libby-react').Config}
*/
export default {
entries: () => require.context('./libby', true, /\.lib\.[tj]sx?$/),
outputPath: 'libby-build',
layout: 'libby/_layout.tsx',
preview: 'libby/_preview.ts',
openBrowser: true,
port: 9001,
title: 'Matchbox',
webpack: () => {
return {
module: {
rules: [
{
test: /\.scss$/i,
exclude: /node_modules/,
use: ['style-loader', 'css-loader', 'sass-loader'],
},
],
},
resolve: {
alias: {
'@sparkpost/matchbox-icons': '/packages/matchbox-icons/src',
'@sparkpost/matchbox': '/packages/matchbox/src',
'@sparkpost/design-tokens': '/packages/design-tokens',
'@sparkpost/matchbox-media': '/packages/matchbox-media',
'@sparkpost/matchbox-css': '/packages/matchbox-css',
},
extensions: ['.js', '.jsx', '.ts', '.tsx', '.json', '.css', '.scss'],
},
};
},
backgrounds: ['#ffffff', '#ebf0f5', '#2c353d'],
};