blob: c31c8c6e205d87da77aec4d759a1113f5985c544 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// CSP config for webpack dynamic chunk loading
// eslint-disable-next-line
__webpack_nonce__ = btoa(OC.requestToken)
// Correct the root of the app for chunk loading
// OC.linkTo matches the apps folders
// eslint-disable-next-line
__webpack_public_path__ = OC.linkTo('files_sharing', 'js/dist/')
import '../js/app'
import '../js/sharedfilelist'
import '../js/sharetabview'
import '../js/share'
import '../js/sharebreadcrumbview'
window.OCA.Sharing = OCA.Sharing
|