Browse Source

Change dir name

pull/10/head
Hironsan 7 years ago
parent
commit
a05057102d
5 changed files with 387 additions and 3 deletions
  1. 192
      app/server/static/bundle/document_classification.js
  2. 192
      app/server/static/bundle/sequence_labeling.js
  3. 2
      app/server/templates/annotation/document_classification.html
  4. 2
      app/server/templates/annotation/sequence_labeling.html
  5. 2
      app/server/webpack.config.js

192
app/server/static/bundle/document_classification.js
File diff suppressed because it is too large
View File

192
app/server/static/bundle/sequence_labeling.js
File diff suppressed because it is too large
View File

2
app/server/templates/annotation/document_classification.html

@ -41,5 +41,5 @@
{% endblock %}
{% block footer %}
<script type="text/javascript" src="{% static 'dist/document_classification.js' %}"></script>
<script type="text/javascript" src="{% static 'bundle/document_classification.js' %}"></script>
{% endblock %}

2
app/server/templates/annotation/sequence_labeling.html

@ -34,5 +34,5 @@
{% endblock %}
{% block footer %}
<script type="text/javascript" src="{% static 'dist/sequence_labeling.js' %}"></script>
<script type="text/javascript" src="{% static 'bundle/sequence_labeling.js' %}"></script>
{% endblock %}

2
app/server/webpack.config.js

@ -7,7 +7,7 @@ module.exports = {
'document_classification': './static/js/document_classification.js'
},
output: {
path: __dirname + '/static/dist',
path: __dirname + '/static/bundle',
filename: '[name].js'
},
module: {

Loading…
Cancel
Save