forked from esbanarango/ember-place-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ember-cli-build.js
39 lines (36 loc) · 836 Bytes
/
ember-cli-build.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
37
38
39
'use strict';
const EmberAddon = require('ember-cli/lib/broccoli/ember-addon');
module.exports = function(defaults) {
let app = new EmberAddon(defaults, {
snippetSearchPaths: ['app', 'tests'],
outputPaths: {
app: {
css: {
'app': '/assets/dummy.css'
}
}
},
postcssOptions: {
compile: {
extension: 'scss',
enabled: true,
parser: require('postcss-scss'),
plugins: [
{
module: require('@csstools/postcss-sass'),
options: {
includePaths: [
'node_modules'
]
}
},
require('tailwindcss')('tests/dummy/app/styles/tailwind.config.js')
]
},
filter: {
enabled: false
}
}
});
return app.toTree();
};