fex-team / fis3-hook-cmd

fis3 cmd(sea.js) 模块化开发支持
BSD 2-Clause "Simplified" License
8 stars 6 forks source link

fis2中sea_config.js是自动生成的,fis3中如何配置 #11

Open sixersun opened 8 years ago

sixersun commented 8 years ago

以下是我的配置 fis.hook('cmd', {
paths: { jquery: '/static/js/lib/jquery.js', //设置jquery别名 } });

fis.match('/sea-modules/*.js', { isMod: true, release:'/static/$0', }); fis.match('.html', { release: '/$0' }); fis.match('::packager', { postpackager: fis.plugin('loader', { allInOne: true, sourceMap: true, //是否生成依赖map文件 useInlineMap: true //是否将sourcemap作为内嵌脚本输出 }) }); 页面中没有生成soucemap

2betop commented 8 years ago

那个必须是 sea.js 才能识别出来,如果加 sea.min.js 估计就给跪了,https://github.com/fex-team/fis3-demo/blob/master/use-seajs/app/hello.html#L23

不知道你用的是不是叫 sea.js

sixersun commented 8 years ago

get @2betop