R app/javascript/packs/remote_interaction_helper.ts => app/javascript/core/remote_interaction_helper.ts +1 -1
@@ 8,7 8,7 @@ and performs no other task.
*/
-import './public-path';
+import 'packs/public-path';
import axios from 'axios';
M app/javascript/core/theme.yml => app/javascript/core/theme.yml +1 -0
@@ 18,3 18,4 @@ pack:
settings: settings.js
sign_up:
share:
+ remote_interaction_helper: remote_interaction_helper.ts
M app/views/remote_interaction_helper/index.html.haml => app/views/remote_interaction_helper/index.html.haml +1 -1
@@ 1,4 1,4 @@
- content_for :header_tags do
%meta{ name: 'robots', content: 'noindex' }/
- = javascript_pack_tag 'remote_interaction_helper', crossorigin: 'anonymous'
+ = javascript_pack_tag 'core/remote_interaction_helper', crossorigin: 'anonymous'
M tsconfig.json => tsconfig.json +2 -1
@@ 24,6 24,7 @@
"app/javascript/mastodon",
"app/javascript/packs",
"app/javascript/types",
- "app/javascript/flavours/glitch"
+ "app/javascript/flavours/glitch",
+ "app/javascript/core"
]
}