vuejs 与 laravel mix 的大 app.js 文件大小 (13 MB)

Joh*_*ohn 1 laravel webpack vue.js

我在larvel 5.8中使用vuejs和blade文件。意味着我没有使用 vue router 而是 laravel view。最近我面临一个大问题,我的 public/js/app.js 文件大小约为 13 MB!当我部署上线时,用户登录时速度很慢!我什至无法分析,因为我没有看到此处显示的任何名为 webpack.config 的配置文件

我的应用程序.js:

        import Vue from "vue"; 
    window.Vue = Vue;
    window.axios = require("axios");
    window.axios.defaults.headers.common["X-Requested-With"] = "XMLHttpRequest";
    require("promise.prototype.finally").shim();

    import { Form, HasError, AlertError } from "vform";
    window.Form = Form;

    Vue.component(HasError.name, HasError);
    Vue.component(AlertError.name, AlertError);

    Vue.component("pagination", require("laravel-vue-pagination"));

    //sweet alert 2

    import swal from "sweetalert2";
    window.swal = swal;
    const toast = swal.mixin({
        toast: true,
        position: "top-end",
        showConfirmButton: false,
        timer: 15000
    });
    window.toast = toast;

    //vue lang

    import VueInternationalization from "vue-i18n";
    import Locale from "./vue-i18n-locales.generated";

    Vue.use(VueInternationalization);

    const lang = document.documentElement.lang.substr(0, 2);
    // or however you determine your current app locale

    const i18n = new VueInternationalization({
        locale: lang,
        messages: Locale
    });

    //vue lang end

    //https://hamed-ehtesham.github.io/pretty-checkbox-vue/#installation

    import PrettyCheckbox from "pretty-checkbox-vue";
    Vue.use(PrettyCheckbox);

    //vue autocomplete

    //ckeditor

    import CKEditor from "@ckeditor/ckeditor5-vue";
    Vue.use(CKEditor);

    /**
     * Next, we will create a fresh Vue ap
     *
     *
     * plication instance and attach it to
     * the page. Then, you may begin adding components to this application
     * or customize the JavaScript scaffolding to fit your unique needs.
     */

    // dash board

    Vue.component(
        "dashboard-site-employee-attendance-list",
        require("./components/dashboard/site/employeeAttendanceListComponent.vue")
    );
    Vue.component(
        "employee-attendance-master-component",
        require("./components/dashboard/site/latestAttendanceListComponent.vue")
    );
Vue.filter("round", function(value) {
    return parseFloat(value).toFixed(0);
});

const app = new Vue({
    el: "#app",
    i18n,
    components: {},

    methods: {},
    mounted() {
        console.log("d" + document.documentElement.lang.substr(0, 2));
    }
});
Run Code Online (Sandbox Code Playgroud)

N>B:我的所有组件都注入这里(提到2只是为了精确)

刀片文件:

    @extends('default.admin.layouts.master')

@section('style')
    {!! Html::style('css/styles.css') !!}
@endsection

@section('content')

    <div class="container-fluid min_height_area">
        <div class="row">
            <div class="col-md-12">
                <div class="view-header">
                    <section class="content-header">
                        <ol class="breadcrumb">
                            <li>
                                <span class="fa fa-dashboard" aria-hidden="true"></span>
                                <a href="{{route('admin')}}">{{ trans('translate.dashboard') }}</a></li>
                            <li class="active text-capitalize">{{ request()->route()->getName() }}</li>
                        </ol>
                    </section>
                </div>
            </div>
        </div>



            <employee-attendance-master-component
            >
            </employee-attendance-master-component>

    </div>

@endsection


@section('hscripts')


    <script>


        window.routes = {
            'attendance_list_by_shift_date': '{{ route('all-employee-attendance-list-by-shift-date') }}',
            'route_attendance_get_shift_list': '{{ route('site-employee-get-shift-list-for-employee') }}',
            'route_employee_attendance_edit': '{{ route('employee-attendance-edit') }}',
            'route_take_access_time': '{{ route('employee-attendance-take-access-time') }}',
            'route_log_by_date_and_username': '{{ route('edu-device-log-get-device-log-by-date-and-username') }}',
            'route_send_sms': '{{ route('site-employee-attendance-send-sms') }}',
            'route_report_date_shift': '{{ route('site-employee-attendance-report-date-and-shift') }}',
            'route_open_pdf_file': '{{ route('open-pdf-file-storage',['']) }}',
            'route_report_month_shift': '{{ route('site-employee-attendance-report-month-and-shift') }}',
            'route_emp_list': '{{ route('site-employee-get-simple-active-list') }}',
            'route_emp_yearly_report': '{{ route('site-employee-attendance-employee-wise-yearly-report') }}',
            'route_site_year_list': '{{ route('get-all-type-academic-year-list') }}',




            'route_user_list': '{{ route('site-user-get-site-user-by-user-type') }}',
            'route_user_data_update': '{{ route('site-user-data-update',['']) }}',
        }
    </script>
@endsection
Run Code Online (Sandbox Code Playgroud)

Webpack.mix.js

mix.js('resources/js/app.js', 'public/js')
   .sass('resources/sass/app.scss', 'public/css');
Run Code Online (Sandbox Code Playgroud)

我的 package.json 文件

在此输入图像描述

编辑

块引用

Sal*_*301 7

  • 请注意,这是开发版本,生产版本的大小会小得多,您的用户必须下载并运行它
npm run prod
Run Code Online (Sandbox Code Playgroud)
  • 您可以将供应商资产提取到一个单独的文件中,该文件将被缓存更长时间
npm run prod
Run Code Online (Sandbox Code Playgroud)

来自Laravel Mix 文档

  • 您可能还想安装Visual Studio Code 的导入成本扩展,因为它会显示您导入或需要的每个 ES6 模块的大小

您可以指示Webpack编译页面特定的 javascript 和 vue 组件,以便您可以将它们单独包含在刀片视图上,请参阅此答案