AK
Size: a a a
AK
II
MA
MA
AK
cross-env MODE=development
MA
MA
MA
AK
MA
AK
AK
MA
AK
AK
gulp.task('inject', () =>
gulp
.src(['./dist/**/*.html'])
.pipe(
replace('<link rel="stylesheet" href="css/bundle.css">', () => {
const css = fs.readFileSync('application/static/css/bundle.css', 'utf8');
return `<style amp-custom>\n${css}\n</style>`;
})
)
.pipe(gulp.dest('application/static'))
);
AK
AK
G