feat(netlify-cms-widget-map): add map widget (#2051)
This commit is contained in:
committed by
Shawn Erquhart
parent
627e600d29
commit
18f34d2aca
17
packages/netlify-cms-widget-map/webpack.config.js
Normal file
17
packages/netlify-cms-widget-map/webpack.config.js
Normal file
@ -0,0 +1,17 @@
|
||||
const { getConfig } = require('../../scripts/webpack.js');
|
||||
|
||||
const baseWebpackConfig = getConfig();
|
||||
|
||||
module.exports = {
|
||||
...baseWebpackConfig,
|
||||
module: {
|
||||
rules: [
|
||||
...baseWebpackConfig.module.rules,
|
||||
{
|
||||
test: /\.css$/,
|
||||
include: [/ol/],
|
||||
use: ['to-string-loader', 'css-loader'],
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
Reference in New Issue
Block a user